home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / assembly / abakus.lha / Abakus / Demos / HelloWorld.a < prev    next >
Text File  |  1995-07-10  |  192b  |  11 lines

  1.  
  2.           module cli
  3.           Input stdin
  4.           Output stdout
  5.  
  6.           Write stdout [ #HelloWorld, #HWln]
  7.           Return
  8.  
  9. HelloWorld dc.b "Hello World",10
  10. HWln      equ *-HelloWorld
  11.